home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / 1995.02 / 000000_andreas@mpa-garching.mpg.de_Wed Feb 1 17:20:10 1995.msg next >
Internet Message Format  |  1995-02-28  |  2KB

  1. Received: from ibm-1.MPA-Garching.MPG.DE by cs.umb.edu with SMTP id AA20425
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Wed, 1 Feb 1995 10:23:24 -0500
  3. Received: (andreas@localhost) by ibm-1.MPA-Garching.MPG.DE (8.6.9/8.6) id QAA86457; Wed, 1 Feb 1995 16:20:10 +0100
  4. Date: Wed, 1 Feb 1995 16:20:10 +0100
  5. From: Andreas Schott <andreas@mpa-garching.mpg.de>
  6. Message-Id: <199502011520.QAA86457@ibm-1.MPA-Garching.MPG.DE>
  7. To: tex-k@cs.umb.edu
  8. Subject: wrong/missing/inconsistent target install-library
  9. Reply-To: andreas@mpa-garching.mpg.de (Andreas Schott)
  10.  
  11. In kpathsea/INSTALL, you write make install installs the
  12. library and header. This is not true, as an excerpt of
  13. kpathsea/Makefile.in shows:
  14. # Installation of kpathsea itself is complicated by the fact that we
  15. # want to install texmf.cnf, kpathsea.info, and MakeTeXPK by default,
  16. # but not the headers or the .a file itself.  So we have a separate
  17. # target `install-library' to install the latter stuff.
  18.  
  19. You should change the documentation, to say, that one has to
  20. say make install-library. But the target install-library is
  21. not available from the toplevel-Makefile. Here a patch:
  22.  
  23. *** Makefile.in.orig    Sun Jan  8 18:20:15 1995
  24. --- Makefile.in    Wed Feb  1 16:11:20 1995
  25. ***************
  26. *** 33,38 ****
  27. --- 33,42 ----
  28.       for d in kpathsea $(programs); do if test -d $$d; then \
  29.         (cd $$d; $(MAKE) $(installargs) $@); else true; fi; done
  30.   
  31. + install-library: do-kpathsea
  32. +     if test -d kpathsea; then \
  33. +       (cd kpathsea; $(MAKE) $(installargs) $@); fi
  34.   # Other standard targets for everything.
  35.   uninstall uninstall-exec uninstall-data \
  36.   mostlyclean clean distclean realclean extraclean configclean \